home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / test.zip / MAKEFILE < prev    next >
Text File  |  1994-04-14  |  86b  |  8 lines

  1. CC     = bcc
  2. CFLAGS = -O -Z
  3.  
  4. all: test.exe
  5.  
  6. .c.exe:
  7.         $(CC) $(CFLAGS) $<
  8.